home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 5
/
Aminet 5 - March 1995.iso
/
Aminet
/
comm
/
dlg
/
yahoo12.lha
/
BooHoo.rexx
next >
Wrap
OS/2 REXX Batch file
|
1994-07-15
|
950b
|
37 lines
/* BooHoo.rexx */
/* This is a very simple who's on-line utility for your callers. */
/* YaHoo v1.2 or later must be running. */
/* Run this using "rx BooHoo.rexx" */
options results
address yahoo
/* You will want to change this header to suit your needs. */
say "Look who's on the BBS"
say ""
say " Who From Activity"
/* Repeat the getline/say commands for each port you want */
/* your callers to see. Refer to the docs for a list of */
/* valid parameters for the "getline" command. */
getline TR0 nolevel notime nobaud nocid
say result
getline TR2 nolevel notime nobaud nocid
say result
/* You might want to write your own arexx code to */
/* post-process the results if you want the users to see */
/* something different. Some things you might want to do */
/* -> remove sysop's name from the list */
/* -> insert color change codes */
/* -> include phone number and max speed of your idle lines */